home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 050 / visrest.arc / RUN.BAT < prev   
Encoding:
DOS Batch File  |  1985-09-28  |  384 b   |  19 lines

  1. echo off
  2. :run1
  3. cls
  4. echo checking for errors...
  5. if exist %1 goto doit
  6. echo what file do you want to run?
  7. goto exit
  8. :doit
  9. vispas <%1 >%1.com
  10. if errorlevel 5 goto exit
  11. if errorlevel 1 goto edit
  12. visbug %1
  13. :edit
  14. if errorlevel 1 vised %1/e
  15. if errorlevel 1 goto run1
  16. :exit
  17. g
  18.  
  19.